home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / gdevmgr.c < prev    next >
C/C++ Source or Header  |  1997-06-20  |  14KB  |  434 lines

  1. /* Copyright (C) 1992, 1993, 1994 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gdevmgr.c */
  20. /* MGR device driver */
  21. #include "gdevprn.h"
  22. #include "gdevpccm.h"
  23. #include "gdevmgr.h"
  24.  
  25. /* Structure for MGR devices, which extend the generic printer device. */
  26. struct gx_device_mgr_s {
  27.     gx_device_common;
  28.     gx_prn_device_common;
  29.     /* Add MGR specific variables */
  30.     int mgr_depth;
  31. };
  32. typedef struct gx_device_mgr_s gx_device_mgr;
  33.  
  34. static struct nclut clut[256];
  35.  
  36. private unsigned int clut2mgr(P2(int, int));
  37. private void swap_bwords(P2(unsigned char *, int));
  38.  
  39. /* ------ The device descriptors ------ */
  40.  
  41. /*
  42.  * Default X and Y resolution.
  43.  */
  44. #define X_DPI 72
  45. #define Y_DPI 72
  46.  
  47. /* Macro for generating MGR device descriptors. */
  48. #define mgr_prn_device(procs, dev_name, num_comp, depth, mgr_depth,\
  49.     max_gray, max_rgb, dither_gray, dither_rgb, print_page)\
  50. {    prn_device_body(gx_device_mgr, procs, dev_name,\
  51.       DEFAULT_WIDTH_10THS, DEFAULT_HEIGHT_10THS, X_DPI, Y_DPI,\
  52.       0, 0, 0, 0,\
  53.       num_comp, depth, max_gray, max_rgb, dither_gray, dither_rgb,\
  54.       print_page),\
  55.       mgr_depth\
  56. }
  57.  
  58. /* For all mgr variants we do some extra things at opening time. */
  59. /* private dev_proc_open_device(gdev_mgr_open); */
  60. #define gdev_mgr_open gdev_prn_open        /* no we don't! */
  61.  
  62. /* And of course we need our own print-page routines. */
  63. private dev_proc_print_page(mgr_print_page);
  64. private dev_proc_print_page(mgrN_print_page);
  65. private dev_proc_print_page(cmgrN_print_page);
  66.  
  67. /* The device procedures */
  68. private gx_device_procs mgr_procs =
  69.     prn_procs(gdev_mgr_open, gdev_prn_output_page, gdev_prn_close);
  70. private gx_device_procs mgrN_procs =
  71.     prn_color_procs(gdev_mgr_open, gdev_prn_output_page, gdev_prn_close,
  72.     gx_default_gray_map_rgb_color, gx_default_gray_map_color_rgb);
  73. private gx_device_procs cmgr4_procs =
  74.     prn_color_procs(gdev_mgr_open, gdev_prn_output_page, gdev_prn_close,
  75.     pc_4bit_map_rgb_color, pc_4bit_map_color_rgb);
  76. private gx_device_procs cmgr8_procs =
  77.     prn_color_procs(gdev_mgr_open, gdev_prn_output_page, gdev_prn_close,
  78.     mgr_8bit_map_rgb_color, mgr_8bit_map_color_rgb);
  79.  
  80. /* The device descriptors themselves */
  81. gx_device_mgr far_data gs_mgrmono_device =
  82.   mgr_prn_device( mgr_procs,  "mgrmono", 1,  1, 1,   1,   0, 2, 0, mgr_print_page);
  83. gx_device_mgr far_data gs_mgrgray2_device =
  84.   mgr_prn_device(mgrN_procs,  "mgrgray2",1,  8, 2, 255,   0, 4, 0, mgrN_print_page);
  85. gx_device_mgr far_data gs_mgrgray4_device =
  86.   mgr_prn_device(mgrN_procs,  "mgrgray4",1,  8, 4, 255,   0,16, 0, mgrN_print_page);
  87. gx_device_mgr far_data gs_mgrgray8_device =
  88.   mgr_prn_device(mgrN_procs,  "mgrgray8",1,  8, 8, 255,   0, 0, 0, mgrN_print_page);
  89. gx_device_mgr far_data gs_mgr4_device =
  90.   mgr_prn_device(cmgr4_procs, "mgr4",    3,  8, 4,   1,   1, 4, 3, cmgrN_print_page);
  91. gx_device_mgr far_data gs_mgr8_device =
  92.   mgr_prn_device(cmgr8_procs, "mgr8",    3,  8, 8, 255, 255, 6, 5, cmgrN_print_page);
  93.  
  94. /* ------ Internal routines ------ */
  95.  
  96. /* Define a "cursor" that keeps track of where we are in the page. */
  97. typedef struct mgr_cursor_s {
  98.     gx_device_mgr *dev;
  99.     int bpp;            /* bits per pixel */
  100.     uint line_size;            /* bytes per scan line */
  101.     byte *data;            /* output row buffer */
  102.     int lnum;            /* row within page */
  103. } mgr_cursor;
  104.  
  105. /* Begin an MGR output page. */
  106. /* Write the header information and initialize the cursor. */
  107. private int
  108. mgr_begin_page(gx_device_mgr *bdev, FILE *pstream, mgr_cursor _ss *pcur)
  109. {    struct b_header head;
  110.     uint line_size =
  111.         gdev_prn_raster((gx_device_printer *)bdev) + 3;
  112.     byte *data = (byte *)gs_malloc(line_size, 1, "mgr_begin_page");
  113.     if ( data == 0 )
  114.         return_error(gs_error_VMerror);
  115.  
  116.     /* Write the header */
  117.     B_PUTHDR8(&head, bdev->width, bdev->height, bdev->mgr_depth);
  118.     fprintf(pstream, "");
  119.     if ( fwrite(&head, 1, sizeof(head), pstream) < sizeof(head) )
  120.         return_error(gs_error_ioerror);
  121.     fflush(pstream);
  122.  
  123.     /* Initialize the cursor. */
  124.     pcur->dev = bdev;
  125.     pcur->bpp = bdev->color_info.depth;
  126.     pcur->line_size = line_size;
  127.     pcur->data = data;
  128.     pcur->lnum = 0;
  129.     return 0;
  130. }
  131.  
  132. /* Advance to the next row.  Return 0 if more, 1 if done. */
  133. private int
  134. mgr_next_row(mgr_cursor _ss *pcur)
  135. {    if ( pcur->lnum >= pcur->dev->height )
  136.        {    gs_free((char *)pcur->data, pcur->line_size, 1,
  137.             "mgr_next_row(done)");
  138.         return 1;
  139.        }
  140.     gdev_prn_copy_scan_lines((gx_device_printer *)pcur->dev,
  141.                  pcur->lnum++, pcur->data, pcur->line_size);
  142.     return 0;
  143. }
  144.  
  145. /* ------ Individual page printing routines ------ */
  146.  
  147. #define bdev ((gx_device_mgr *)pdev)
  148.  
  149. /* Print a monochrome page. */
  150. private int
  151. mgr_print_page(gx_device_printer *pdev, FILE *pstream)
  152. {    mgr_cursor cur;
  153.     int mgr_wide;
  154.     int code = mgr_begin_page(bdev, pstream, &cur);
  155.     if ( code < 0 ) return code;
  156.  
  157.     mgr_wide = bdev->width;
  158.     if (mgr_wide & 7)
  159.        mgr_wide += 8 - (mgr_wide & 7);
  160.        
  161.     while ( !(code = mgr_next_row(&cur)) )
  162.        {    if ( fwrite(cur.data, sizeof(char), mgr_wide / 8, pstream) <
  163.                     mgr_wide / 8)
  164.         return_error(gs_error_ioerror);
  165.        }
  166.     return (code < 0 ? code : 0);
  167. }
  168.  
  169.  
  170. /* Print a gray-mapped page. */
  171. static unsigned char bgreytable[16], bgreybacktable[16];
  172. static unsigned char bgrey256table[256], bgrey256backtable[256];        
  173. /* private */
  174. int
  175. mgrN_print_page(gx_device_printer *pdev, FILE *pstream)
  176. {    mgr_cursor cur;
  177.     int i = 0, j, k, mgr_wide;
  178.     uint mgr_line_size;
  179.     byte *bp, *data = NULL, *dp;
  180.         
  181.     int code = mgr_begin_page(bdev, pstream, &cur);
  182.     if ( code < 0 ) return code;
  183.  
  184.     mgr_wide = bdev->width;
  185.     if ( bdev->mgr_depth == 2 && mgr_wide & 3 )
  186.             mgr_wide += 4 - (mgr_wide & 3);
  187.     if ( bdev->mgr_depth == 4 && mgr_wide & 1 )
  188.             mgr_wide++;
  189.     mgr_line_size = mgr_wide / ( 8 / bdev->mgr_depth );
  190.  
  191.     if ( bdev->mgr_depth == 4 )
  192.             for ( i = 0; i < 16; i++ ) {
  193.         bgreytable[i] = mgrlut[LUT_BGREY][RGB_RED][i];
  194.         bgreybacktable[bgreytable[i]] = i;
  195.             }
  196.  
  197.     if ( bdev->mgr_depth == 8 ) {
  198.             for ( i = 0; i < 16; i++ ) {
  199.         bgrey256table[i] = mgrlut[LUT_BGREY][RGB_RED][i] << 4;
  200.         bgrey256backtable[bgrey256table[i]] = i;
  201.             }
  202.             for ( i = 16,j = 0; i < 256; i++ ) {
  203.         for ( k = 0; k < 16; k++ )
  204.                   if ( j == mgrlut[LUT_BGREY][RGB_RED][k] << 4 ) {
  205.                     j++;
  206.                     break;
  207.                   }
  208.         bgrey256table[i] = j;
  209.         bgrey256backtable[j++] = i;
  210.             }
  211.     }
  212.  
  213.     if ( bdev->mgr_depth != 8 )
  214.             data = (byte *)gs_malloc(mgr_line_size, 1, "mgrN_print_page");
  215.         
  216.     while ( !(code = mgr_next_row(&cur)) )
  217.        {
  218.         switch (bdev->mgr_depth) {
  219.             case 2:
  220.                 for (i = 0,dp = data,bp = cur.data; i < mgr_line_size; i++) {
  221.                     *dp =    *(bp++) & 0xc0;
  222.                     *dp |= (*(bp++) & 0xc0) >> 2;
  223.                     *dp |= (*(bp++) & 0xc0) >> 4;
  224.                                     *(dp++) |= (*(bp++) & 0xc0) >> 6;
  225.                 }
  226.                         if ( fwrite(data, sizeof(byte), mgr_line_size, pstream) < mgr_line_size )
  227.                                     return_error(gs_error_ioerror);
  228.                 break;
  229.                             
  230.             case 4:
  231.                 for (i = 0,dp = data, bp = cur.data; i < mgr_line_size; i++) {
  232.                     *dp =  bgreybacktable[*(bp++) >> 4] << 4;
  233.                                     *(dp++) |= bgreybacktable[*(bp++) >> 4];
  234.                 }
  235.                         if ( fwrite(data, sizeof(byte), mgr_line_size, pstream) < mgr_line_size )
  236.                                     return_error(gs_error_ioerror);
  237.                 break;
  238.                             
  239.             case 8:
  240.                 for (i = 0,bp = cur.data; i < mgr_line_size; i++, bp++)
  241.                                   *bp = bgrey256backtable[*bp];
  242.                         if ( fwrite(cur.data, sizeof(cur.data[0]), mgr_line_size, pstream)
  243.                     < mgr_line_size )
  244.                                     return_error(gs_error_ioerror);
  245.                 break;
  246.         }  
  247.        }
  248.     if (bdev->mgr_depth != 8)
  249.             gs_free((char *)data, mgr_line_size, 1, "mgrN_print_page(done)");
  250.  
  251.     if (bdev->mgr_depth == 2) {
  252.             for (i = 0; i < 4; i++) {
  253.                clut[i].colnum = i;
  254.                clut[i].red    = clut[i].green = clut[i].blue = clut2mgr(i, 2);
  255.         }
  256.        }
  257.     if (bdev->mgr_depth == 4) {
  258.             for (i = 0; i < 16; i++) {
  259.                clut[i].colnum = i;
  260.                clut[i].red    = clut[i].green = clut[i].blue = clut2mgr(bgreytable[i], 4);
  261.         }
  262.        }
  263.     if (bdev->mgr_depth == 8) {
  264.             for (i = 0; i < 256; i++) {
  265.                clut[i].colnum = i;
  266.                clut[i].red    = clut[i].green = clut[i].blue = clut2mgr(bgrey256table[i], 8);
  267.         }
  268.        }
  269. #if !arch_is_big_endian
  270.     swap_bwords( (unsigned char *) clut, sizeof( struct nclut ) * i );
  271. #endif
  272.     if ( fwrite(&clut, sizeof(struct nclut), i, pstream) < i )
  273.             return_error(gs_error_ioerror);
  274.     return (code < 0 ? code : 0);
  275. }
  276.  
  277. /* Print a color page. */
  278. private int
  279. cmgrN_print_page(gx_device_printer *pdev, FILE *pstream)
  280. {    mgr_cursor cur;
  281.     int i = 0, j, mgr_wide, r, g, b, colors8 = 0;
  282.     uint mgr_line_size;
  283.     byte *bp, *data, *dp;
  284.     ushort prgb[3];
  285.     unsigned char table[256], backtable[256];
  286.         
  287.     int code = mgr_begin_page(bdev, pstream, &cur);
  288.     if ( code < 0 ) return code;
  289.  
  290.     mgr_wide = bdev->width;
  291.     if (bdev->mgr_depth == 4 && mgr_wide & 1)
  292.             mgr_wide++;
  293.     mgr_line_size = mgr_wide / (8 / bdev->mgr_depth);
  294.            data = (byte *)gs_malloc(mgr_line_size, 1, "cmgrN_print_page");
  295.  
  296.            if ( bdev->mgr_depth == 8 ) {
  297.             memset( table, 0, sizeof(table) );
  298.             for ( r = 0; r <= 6; r++ )
  299.         for ( g = 0; g <= 6; g++ )
  300.                        for ( b = 0; b <= 6; b++ )
  301.                    if ( r == g && g == b )
  302.                             table[ r + (256-7) ] = 1;
  303.             else
  304.                             table[ (r << 5) + (g << 2) + (b >> 1) ] = 1;
  305.             for ( i = j = 0; i < sizeof(table); i++ )
  306.         if ( table[i] == 1 ) {
  307.                     backtable[i] = j;
  308.                     table[j++] = i;
  309.         }
  310.             colors8 = j;
  311.     }
  312.     while ( !(code = mgr_next_row(&cur)) )
  313.        {
  314.         switch (bdev->mgr_depth) {
  315.             case 4:
  316.                 for (i = 0,dp = data, bp = cur.data; i < mgr_line_size; i++) {
  317.                     *dp =  *(bp++) << 4;
  318.                                     *(dp++) |= *(bp++) & 0x0f;
  319.                 }
  320.                         if ( fwrite(data, sizeof(byte), mgr_line_size, pstream) < mgr_line_size )
  321.                                     return_error(gs_error_ioerror);
  322.                 break;
  323.                             
  324.             case 8:
  325.                 for (i = 0,bp = cur.data; i < mgr_line_size; i++, bp++)
  326.                                   *bp = backtable[*bp] + MGR_RESERVEDCOLORS;
  327.                         if ( fwrite(cur.data, sizeof(cur.data[0]), mgr_line_size, pstream) < mgr_line_size )
  328.                                     return_error(gs_error_ioerror);
  329.                 break;
  330.         }  
  331.        }
  332.            gs_free((char *)data, mgr_line_size, 1, "cmgrN_print_page(done)");
  333.            
  334.     if (bdev->mgr_depth == 4) {
  335.             for (i = 0; i < 16; i++) {
  336.                pc_4bit_map_color_rgb((gx_device *)0, (gx_color_index) i, prgb);
  337.                clut[i].colnum = i;
  338.                clut[i].red    = clut2mgr(prgb[0], 16);
  339.                clut[i].green  = clut2mgr(prgb[1], 16);
  340.                clut[i].blue   = clut2mgr(prgb[2], 16);
  341.         }
  342.        }
  343.     if (bdev->mgr_depth == 8) {
  344.             for (i = 0; i < colors8; i++) {
  345.                mgr_8bit_map_color_rgb((gx_device *)0, (gx_color_index)
  346.                    table[i], prgb);
  347.                clut[i].colnum = MGR_RESERVEDCOLORS + i;
  348.                clut[i].red    = clut2mgr(prgb[0], 16);
  349.                clut[i].green  = clut2mgr(prgb[1], 16);
  350.                clut[i].blue   = clut2mgr(prgb[2], 16);
  351.         }
  352.        }
  353. #if !arch_is_big_endian
  354.     swap_bwords( (unsigned char *) clut, sizeof( struct nclut ) * i );
  355. #endif    
  356.     if ( fwrite(&clut, sizeof(struct nclut), i, pstream) < i )
  357.             return_error(gs_error_ioerror);
  358.     return (code < 0 ? code : 0);
  359. }
  360.  
  361.  
  362. /* Color mapping routines for 8-bit color with a fixed palette */
  363. /* (3 bits of R, 3 bits of G, 2 bits of B). */
  364. /* We have to trade off even spacing of colors along each axis */
  365. /* against the desire to have real gray shades; */
  366. /* MGR compromises by using a 7x7x4 "cube" with extra gray shades */
  367. /* (1/6, 1/2, and 5/6), instead of the obvious 8x8x4. */
  368.  
  369. gx_color_index
  370. mgr_8bit_map_rgb_color(gx_device *dev, gx_color_value r, gx_color_value g,
  371.   gx_color_value b)
  372. {    uint rv = r / (gx_max_color_value / 7 + 1);
  373.     uint gv = g / (gx_max_color_value / 7 + 1);
  374.     uint bv = b / (gx_max_color_value / 7 + 1);
  375.     return (gx_color_index)
  376.         (rv == gv && gv == bv ? rv + (256-7) :
  377.          (rv << 5) + (gv << 2) + (bv >> 1));
  378. }
  379. int
  380. mgr_8bit_map_color_rgb(gx_device *dev, gx_color_index color,
  381.   gx_color_value prgb[3])
  382. {    static const gx_color_value ramp[8] =
  383.     {    0, gx_max_color_value / 6, gx_max_color_value / 3,
  384.         gx_max_color_value / 2, 2 * (gx_max_color_value / 3),
  385.         5 * (gx_max_color_value / 6), gx_max_color_value,
  386.         /* The 8th entry is not actually ever used, */
  387.         /* except to fill out the palette. */
  388.         gx_max_color_value
  389.     };
  390. #define icolor (uint)color
  391.     if ( icolor >= 256-7 )
  392.     {    prgb[0] = prgb[1] = prgb[2] = ramp[icolor - (256-7)];
  393.     }
  394.     else
  395.     {    prgb[0] = ramp[(icolor >> 5) & 7];
  396.         prgb[1] = ramp[(icolor >> 2) & 7];
  397.         prgb[2] = ramp[(icolor & 3) << 1];
  398.     }
  399. #undef icolor
  400.     return 0;
  401. }
  402.  
  403.  
  404. /* convert the 8-bit look-up table into the standard MGR look-up table */
  405. private unsigned int
  406. clut2mgr(
  407.   register int v,        /* value in clut */
  408.   register int bits        /* number of bits in clut */
  409. )
  410. {
  411.   register unsigned int i;
  412.  
  413.   i = (unsigned int) 0xffffffff / ((1<<bits)-1);
  414.   return((v*i)/0x10000);
  415. }
  416.  
  417.  
  418. /*
  419.  * s w a p _ b w o r d s
  420.  */
  421. private void
  422. swap_bwords(register unsigned char *p, int n)
  423. {
  424.   register unsigned char c;
  425.  
  426.   n /= 2;
  427.   
  428.   for (; n > 0; n--, p += 2) {
  429.     c    = p[0];
  430.     p[0] = p[1];
  431.     p[1] = c;
  432.   }
  433. }
  434.